home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
docs
/
cptuts22
/
newdate.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-01-20
|
392 b
|
22 lines
// Chapter 7 - Program 9
// This class inherits the date class and adds one variable and one
// method to it.
#ifndef NEWDATE_H
#define NEWDATE_H
#include "date.h"
class new_date : public date {
protected:
int day_of_year; // New member variable
public:
int get_day_of_year(void); // New method
};
#endif